home *** CD-ROM | disk | FTP | other *** search
/ Shareware Universe - The Gold Collection / Shareware Universe The Gold Collection.iso / wind / winproof / winproof.go < prev    next >
Encoding:
Text File  |  1996-04-19  |  2.0 KB  |  54 lines

  1. Winproof Installation Instructions
  2. Once installed from the CD, follow these instructions
  3. @ECHO OFF
  4. ECHO             WINPROOF HARD DISK INSTALLATION INSTRUCTIONS
  5. ECHO Make a new directory for WinProof and switch to it.  Example:
  6. ECHO MKDIR WINPROOF
  7. ECHO CD WINPROOF
  8. ECHO Then type the command A:INSTALL if you are installing from drive A: or
  9. ECHO B:INSTALL B: if you are installing from drive B:.
  10. ECHO You will need 850K bytes free on your hard disk.
  11. ECHO ╔═══════════════════════════════════════════════════════╗
  12. ECHO ║ DID YOU MAKE A SUBDIRECTORY AND MADE IT YOUR DEFAULT? ║
  13. ECHO ╚═══════════════════════════════════════════════════════╝
  14. ECHO Press Control-C to stop installation.
  15. pause
  16. IF exist WINPRO.EXE goto ndrive
  17. IF %1. == . goto NDEFDRV
  18. If not exist %1\nul goto NEEDARG
  19. IF not exist %1WINPRO.EXE goto NEEDARG
  20. %1WINPRO.EXE /e.
  21. IF not exist WINPROOF.tut goto ERROR
  22. goto COPYDONE
  23. :NDEFDRV
  24. If not exist a:\nul goto NEEDARG
  25. IF not exist a:WINPRO.EXE goto NEEDARG
  26. a:WINPRO.EXE /e.
  27. IF not exist WINPROOF.tut goto ERROR
  28. :COPYDONE
  29. If not errorlevel 0 goto ERROR
  30. more < WINPROOF.doc
  31. ECHO Installation is complete.
  32. goto done
  33. :ndrive
  34. ECHO You cannot install WinProof while your default drive is the same as
  35. ECHO the installation drive.  Please switch to the drive and subdirectory
  36. ECHO you want to install WinProof to.
  37. goto fail
  38. :ERROR
  39. echo One or more of the WinProof files failed to copy. Check if there is
  40. echo 850K bytes avaliable on your hard disk.  Also check if the drive
  41. echo is not write protected.  Then, restart this installation.
  42. goto fail
  43. :NEEDARG
  44. ECHO The installation disk was not correctly specified.  If you are not
  45. ECHO installing from drive A:, you need to supply the drive letter to
  46. ECHO the INSTALL command.  If you are installing from drive B:, issue the
  47. ECHO command B:INSTALL B: (Make sure to include B: after INSTALL.)
  48. :fail
  49. ECHO   ╔═════════════════════════════════════════════════════╗
  50. echo   ║  WinProof has not been installed, please try again. ║
  51. ECHO   ╚═════════════════════════════════════════════════════╝
  52. :done
  53.  
  54.